home *** CD-ROM | disk | FTP | other *** search
- class DiegoHome extends BuildingPart
- {
- function DiegoHome()
- {
- super();
- }
- function render()
- {
- var _loc2_ = smashing.Viewport.getPos(this);
- if(_loc2_.x > smashing.Viewport.halfWidth)
- {
- this._visible = false;
- }
- else
- {
- this._visible = true;
- this._x = _loc2_.x + smashing.Viewport.centerX;
- this._y = _loc2_.y + smashing.Viewport.centerY;
- }
- }
- }
-